home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / M2Crypto / PGP / RSA.pyo (.txt) < prev   
Python Compiled Bytecode  |  2008-10-13  |  810b  |  24 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. import sys
  5. from M2Crypto import m2, RSA
  6. _RSA = RSA
  7. del RSA
  8.  
  9. class RSA(_RSA.RSA):
  10.     pass
  11.  
  12.  
  13. class RSA_pub(_RSA.RSA_pub):
  14.     pass
  15.  
  16.  
  17. def new_pub_key(.0):
  18.     (e, n) = .0
  19.     rsa = m2.rsa_new()
  20.     m2.rsa_set_e_bin(rsa, e)
  21.     m2.rsa_set_n_bin(rsa, n)
  22.     return RSA_pub(rsa, 1)
  23.  
  24.